home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pgpmail.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  70 lines

  1. #
  2. # This script was written by Michel Arboi <arboi@alussinan.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added CAN.  Added link to the Bugtraq message archive
  7. #
  8. # GPL
  9. #
  10. # References:
  11. # From: joetesta@hushmail.com
  12. # To: bugtraq@securityfocus.com, jscimone@cc.gatech.edu
  13. # Subject: Vulnerabilities in PGPMail.pl
  14. # Date: Thu, 29 Nov 2001 19:45:38 -0800
  15. # John Scimone <jscimone@cc.gatech.edu>.  
  16. # <http://www.securityfocus.com/archive/82/243262>
  17. #
  18.  
  19. if(description)
  20. {
  21.  script_id(11070);
  22.  script_bugtraq_id(3605);
  23.  script_version ("$Revision: 1.7 $");
  24.  script_cve_id("CAN-2001-0937");
  25.  
  26.  name["english"] = "PGPMail.pl detection";
  27.  script_name(english:name["english"]);
  28.  
  29.  desc["english"] = "The 'PGPMail.pl' CGI is installed. 
  30. Some versions (up to v1.31 a least) of this CGI do not
  31. properly filter user input before using it inside commands.
  32. This would allow a cracker to run any command on your server.
  33.  
  34. *** Note: Nessus just checked the presence of this CGI 
  35. *** but did not try to exploit the flaws.
  36.  
  37. Solution : remove it from /cgi-bin or upgrade it.
  38.  
  39. Reference : http://online.securityfocus.com/archive/82/243262
  40. Reference : http://online.securityfocus.com/archive/1/243408
  41.  
  42. Risk factor : High";
  43.  
  44.  
  45.  script_description(english:desc["english"]);
  46.  
  47.  summary["english"] = "Checks for the presence of PGPMail.pl";
  48.  
  49.  script_summary(english:summary["english"]);
  50.  
  51.  script_category(ACT_GATHER_INFO);
  52.  
  53.  
  54.  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi");
  55.  family["english"] = "CGI abuses";
  56.  script_family(english:family["english"]);
  57.  script_dependencie("http_version.nasl");
  58.  script_require_ports("Services/www", 80);
  59.  exit(0);
  60. }
  61.  
  62. #
  63. include("http_func.inc");
  64. include("http_keepalive.inc");
  65. port = get_http_port(default:80);
  66. res = is_cgi_installed_ka(port:port, item:"PGPMail.pl");
  67. if(res) security_warning(port);
  68.  
  69.